home *** CD-ROM | disk | FTP | other *** search
- <Schema xmlns="urn:schemas-microsoft-com:xml-data"
- xmlns:dt="urn:schemas-microsoft-com:datatypes">
- <AttributeType name="C" required="yes" dt:type="string"/>
- <AttributeType name="F" required="yes" dt:type="string"/>
- <ElementType name="LOW">
- <attribute type="C"/>
- <attribute type="F"/>
- </ElementType>
- <ElementType name="HI">
- <attribute type="C"/>
- <attribute type="F"/>
- </ElementType>
- <AttributeType name="VALUE" required="yes" dt:type="enumeration"
- dt:values="SUNNY PARTLYSUNNY PARTLYCLOUDY CLOUDY RAIN SNOW"/>
- <ElementType name="SKIES">
- <attribute type="VALUE"/>
- </ElementType>
- <AttributeType name="NAME" required="yes" dt:type="string"/>
- <ElementType name="CITY" content="mixed">
- <attribute type="NAME"/>
- <element type="SKIES"/>
- <element type="HI"/>
- <element type="LOW"/>
- </ElementType>
- <ElementType name="STATE" content="mixed">
- <attribute type="NAME"/>
- <element type="CITY"/>
- </ElementType>
- <ElementType name="WEATHERREPORT" content="eltOnly">
- <element type="STATE"/>
- </ElementType>
- </Schema>